home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2000 January / Macworld (2000-01).dmg / Updaters / DirXtra HTML204 / xtradoc.dir / 00006_Script_6 < prev    next >
Text File  |  1999-02-22  |  579b  |  23 lines

  1. on link str
  2.   puppetsound "time"
  3.   updatestage
  4.   htmldolinkabs "html", str
  5.   htmlgetmeta
  6. end
  7.  
  8. on shapechange id
  9.   global ghandcursor
  10.   case id of
  11.     -1: -- mouse left the sprite
  12.       cursor -1 -- switch the cursor to the standard mouse cursor
  13.     0: -- over an empty area
  14.       cursor 1 -- switch to I-beam cursor
  15.     1: -- over text area
  16.       cursor 1 -- switch to I-beam cursor
  17.     2: -- over link area
  18.       cursor ghandcursor -- switching to pointing hand cursor
  19.     3: -- over scroll area
  20.       cursor -1 -- switch to standard cursor
  21.   end case
  22. end
  23.